home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / tdwgui.zip / README < prev    next >
Text File  |  1993-09-10  |  3KB  |  67 lines

  1.   -- TDWGUI --
  2.  
  3.                                                               09-07-93
  4.  
  5.   To use a TDW Video DLL, simply edit the TDW.INI file that the
  6.   installation program puts in your main Windows directory (if it's not
  7.   there then create it).  You can modify TDW.INI with any ASCII text
  8.   editor.  Under the section heading [TurboDebugger] there is an option
  9.   called "VideoDLL".  This entry should equal the path and filename of
  10.   the DLL you want to use for SVGA support (see the example TDW.INI file
  11.   later in this file).
  12.  
  13.   ***************************************************************************
  14.   NOTE:
  15.  
  16.   You must have EXACTLY *ONE* copy of TDW.INI and it must exist in the
  17.   Windows directory.  If you fail to do this then TDW may not work!
  18.  
  19.   ***************************************************************************
  20.  
  21.   There are also options you can set for the current video DLL.  You list
  22.   these options under the [VideoOptions] heading in any order you like.
  23.  
  24.   This set of files will allow the Borland Turbo Debugger for Windows
  25.   3.x and greater to work on any video card.  It does this by not
  26.   switching into text mode for TDW to display on, but instead using the
  27.   Windows graphics functions (like TextOut) to simulate TDW in window.
  28.  
  29.   TDW.INI       - This is a sample TDW.INI file (this should be in the
  30.                   Windows directory).
  31.  
  32.   TDWGUI.DLL    - This is the DLL itself that TDW will call.
  33.  
  34.   OPTIONS.TXT   - This is a list of all the options that can be
  35.                   specified in the [VideoOptions] section in the TDW.INI
  36.                   file.
  37.  
  38.   CNFG.EXE      - This is a program that will bring up the DLL's
  39.                   configuration screens for changing the fonts, and
  40.                   window position.
  41.  
  42.   This version of the DLL does not have the Windows .HLP files with it,
  43.   so the help buttons will not do anything useful.
  44.  
  45.   Most of the common options in TDWGUI can be set via the CNFG.EXE
  46.   program.  Other options must be set in the TDW.INI file directly.
  47.  
  48.  
  49.  -----------------------------------------------------------------------------
  50.  Example of what the TDW.INI file should look like:
  51.  
  52. ; Sample TDW.INI file for use with TDWGUI.DLL
  53. [TurboDebugger]
  54. DebuggerDll=c:\borlandc\bin\tdwin.dll
  55. VideoDLL=c:\borlandc\bin\tdwgui.dll
  56.  
  57. [VideoOptions]
  58. DebugFile=c:\borlandc\bin\tdw.log
  59. ForceFileSave=Yes
  60. BorderWidth=6
  61. FontSize=6
  62. MaxLines=62
  63. RestartGDI=No
  64. CursorMethod=B
  65. ------------------------------------------------------------------------------
  66.  
  67.   -- Jeff Peters (Borland Tech Support)